c94fd1a5e4bd98c72422ab8852726a97688787ac,src/main/java/pcl/OpenFM/TileEntity/TileEntityRadio.java,TileEntityRadio,updateEntity,#,174

Before Change


			}
		} else {
			if (isPlaying()) {
				PacketHandler.INSTANCE.sendToAllAround(new MessageTERadioBlock(this), new NetworkRegistry.TargetPoint(getWorldObj().provider.dimensionId, this.xCoord, this.yCoord, this.zCoord, 50.0D));
				th += 1;
				if (th >= 60) {
					for (Speaker s : speakers) {

After Change


			}
		} else {
			if (isPlaying()) {
				if (loops >= 40) {
					PacketHandler.INSTANCE.sendToAllAround(new MessageTERadioBlock(this), new NetworkRegistry.TargetPoint(getWorldObj().provider.dimensionId, this.xCoord, this.yCoord, this.zCoord, 50.0D));
					loops++;
				} else {
					loops = 0;